home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / printing / fontgdos.lzh / FONTGDOS.DOC next >
Text File  |  1992-05-30  |  22KB  |  501 lines

  1. FontGDOS Release - May 28, 1992
  2.  
  3. Legal Statement:
  4. FONTGDOS.PRG and its associated Drivers, Control Panel Extensions, Desk
  5. Accessories, and Installation Program ("FontGDOS") are Copyright
  6. 1989-1992 Atari Corporation. FontGDOS may not be uploaded to any
  7. bulletin board systems, included in any PD or user group libraries,
  8. sold, or distributed in any way without the express written approval
  9. of Atari Corp.
  10.  
  11. In no event will Atari Corp. be liable to you for any incidental
  12. damages of any kind, including loss of profits or data, even if Atari
  13. Corp. is aware of the possibility of such damages arising from the
  14. use of this software.
  15.  
  16. Atari is pleased to release FontGDOS, the latest version of the
  17. Graphic Device Operating System for Atari TOS-based computers.
  18. FontGDOS is a direct replacement for all existing versions of
  19. GDOS.PRG. It provides many benefits over the existing version of
  20. GDOS, as well as the "GDOS-clones" that are on the market:
  21.  
  22. 1) Bitmap Caching for more efficient use of RAM; fonts are loaded
  23.    into RAM on an as-needed basis instead of being resident constantly.
  24. 2) GEM/3 Bezier Curve VDI routines become instantly available to
  25.    correctly written GEM applications.
  26. 3) More printer drivers are available than ever before, including
  27.    Deskjet, Paintjet, Okidata Color, Epson Compatible 24-pin BW and
  28.    Color.
  29. 4) Desk Accessories or Control Panel Extensions now allow you to
  30.    easily change printer drivers on-the-fly. (Results will vary
  31.    depending on how well-behaved the application is. Some
  32.    applications will require that you select the driver before
  33.    running it; well-behaved applications will allow you to select the
  34.    driver anytime before actually printing.)
  35. 5) Desk Accessories or Control Panel Extensions now allow you to
  36.    easily select or install other GDOS drivers and configure and
  37.    install fonts.
  38.  
  39. FontGDOS product support is provided in GEnie's Atari Roundtable, 
  40. Category 14, Topic __. You may also send e-mail to me (B.REHBOCK) or
  41. Mike Fulton (MIKE-FULTON) if you have technical difficulties. 
  42.  
  43. Developers that are interested in correctly providing application
  44. printer output should contact Gail Bacani on 408-745-2022 to obtain
  45. the latest GDOS application information. It is available to
  46. registered commercial developers for free. United States and Canadian
  47. residents that are interested in GDOS programming can order the "GEM
  48. Programming Guide" from Atari Developer Relations for only $40.00
  49. (US). The kit contains:
  50.  
  51. 1) GEM Programming Guide,
  52.      Volume 1 -- VDI (Third Edition:  January 1989)
  53.      Volume 2 -- AES (Third Edition:  January 1989)
  54. 2) GDOS/FSM GDOS Developer Guide (10/91)
  55. 3) GEM Resource Construction Set (undated)
  56.  
  57. 4) TOS Developer's Kit Disk #2:  MicroEMACS / Source Code Examples / RCS
  58.  
  59. Simply send a check or money order for $40.00 and a note indicating
  60. you would like to receive the "GEM Programming Guide" to:
  61.  
  62. Atari Corp.
  63. 1196 Borregas Ave.
  64. Sunnyvale, CA 94089
  65. Attn: Developer Relations/Material Order
  66.  
  67. Residents outside U.S. and Canada must contact their local Atari
  68. Subsidiary for the kit.
  69.  
  70. Enjoy this latest operating system upgrade from Atari.
  71.  
  72.  
  73. Bill Rehbock
  74. Director of Applications Software, Atari Corp.
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.                         A User's Guide to FontGDOS
  83.                    Copyright © 1992 by Atari Corporation
  84.  
  85.  
  86.  
  87. Introduction:
  88. -------------
  89. We should begin with a quick review of what GDOS is and what it allows you
  90. to do.  GDOS is actually an extension of your operating system.  It allows
  91. the programs that you run to output text and graphics to printers and other
  92. devices besides the screen.  GDOS also enables you to print text in many
  93. different font faces.  Instead of typing characters in the standard system
  94. font, you now have access to Swiss, Times, Typewriter, and a multitude of
  95. other fonts.
  96.  
  97. GDOS is run when you first turn on your machine.  For now, don't worry
  98. about where to put it or what it needs to run.  Our install program will
  99. set your system up so that everything will be placed in the correct
  100. location.
  101.  
  102.  
  103. Basic Concepts:
  104. ---------------
  105. FontGDOS replaces the original GDOS.  If you already have the original GDOS
  106. installed on your system, then your first question is probably, "What's the
  107. difference between the GDOS that I have now and FontGDOS"?  The main thing
  108. is that FontGDOS uses memory much more efficiently than earlier versions of
  109. GDOS.
  110.  
  111. For example, with the original GDOS v1.1, if you had 18 fonts installed for
  112. your printer, taking up 1.5 megabytes of disk space, then when your program
  113. tried to load printer fonts, GDOS would load all 18 fonts and use up 1.5
  114. megabytes of your free memory (unless you didn't have that much memory
  115. available).  This would be the case even if the document you were printing
  116. only used 3 or 4 of the 18 total fonts.
  117.  
  118. One of the main new features in FontGDOS is "font caching".  With font
  119. caching, you tell FontGDOS how much memory that you wish to devote to
  120. storing your bitmap fonts.  This memory is called a cache.  FontGDOS will
  121. wait to load in a font from disk until when it's actually needed, and then
  122. store it in the cache for quick access.  When there is no longer any room
  123. in the cache for the next font, FontGDOS will remove something from the
  124. cache to make room.  As long as the memory that you allocate for the cache
  125. is bigger than the largest font, FontGDOS will be able to use as many
  126. bitmap fonts as you wish in a limited amount of memory.
  127.  
  128. An even more enhanced version of GDOS known as FSMGDOS is available
  129. separately for an additional charge.  FSMGDOS uses special outline fonts
  130. which can be scaled to any size or rotated at any angle without a loss of
  131. quality (unlike bitmapped fonts).  FSMGDOS also works with bitmapped fonts
  132. like FontGDOS, but FontGDOS does not work with FSMGDOS outline fonts.
  133. Contact your Atari dealer for information on obtaining FSMGDOS.
  134.  
  135.  
  136.  
  137. Getting Started
  138. ---------------
  139. Installing FontGDOS onto your system is a simple task.  Insert FontGDOS
  140. disk #1 into your floppy drive.  Run INSTALL.PRG on this disk to install
  141. FontGDOS onto your system.  The install program will walk you through the
  142. steps needed to install FontGDOS.  When the installation is completed, you
  143. will have all of  the necessary files on your system to begin.  (The
  144. install program is the same for both FontGDOS and FSMGDOS.  Make sure you
  145. select FontGDOS for installation unless you have FSMGDOS.)
  146.  
  147. After the installation is completed, you must reboot your machine to enable
  148. FontGDOS.  If you've installed it correctly, you'll get the new FontGDOS
  149. sign-on message while you boot up.  If all went well, FontGDOS was
  150. installed and you should be seeing a normal desktop.  If FontGDOS gives you
  151. an error message while booting up,  run the install program again, paying
  152. close attention to any installation error messages which may come up.  Note
  153. that the installation program will install brand new device drivers, and
  154. that old drivers for the original GDOS will not work correctly with either
  155. FSMGDOS or FONTGDOS.  (However, Atari supplies drivers for most popular
  156. printers with FontGDOS and FSMGDOS.)
  157.  
  158. FontGDOS should be compatible with all programs that use the original GDOS.
  159. Try running some of these programs to see how they work with FontGDOS.
  160. Note that the installation program will set up your system so that you can
  161. use all of your newly installed fonts immediately.  To change the setup
  162. (e.g. if you want to use older GDOS fonts from an earlier GDOS
  163. installation), read the section below on how to use the FontGDOS Printer
  164. Selector accessory.
  165.  
  166. Note: The remainder of the document will refer to accessories only, but in
  167.       all cases the same thing applies to both the Desk Accessory the
  168.       corresponding CPX modules as well.  Refer to the documentation for
  169.       the eXtensible CONTROL Panel (XCONTROL) for more information on
  170.       installing CPX modules.
  171.  
  172. In addition to the FontGDOS program, three accessories have been provided:
  173.  
  174. Printer Config:    This accessory is used to change your printer driver
  175.                    configuration;  y